home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 226 / 226.d81 / t.body twister < prev    next >
Text File  |  2022-08-26  |  3KB  |  105 lines

  1. u
  2.        B O D Y   T W I S T E R
  3.            by Dave Moorman
  4.  
  5.  
  6.     Here's a little party game I
  7. remember from an ancient type-in BASIC
  8. games book (circa 1978) -- probably
  9. edited by David H. Ahl. I have snazzed
  10. it up some, but not really much.
  11.  
  12.     The IDEA of the game is to get
  13. together a room full of friends, hook
  14. the C-64 to the TV, and wait until
  15. everyone is fairly uninhibited. Then
  16. fire up Body Twister!
  17.  
  18.     The first screen asks if you have
  19. had enough to drink. OK -- bad joke.
  20. You will certainly want to check out
  21. the appropriateness before the party!
  22. Anyway, press <RETURN>.
  23.  
  24.     Now input each player's name. When
  25. prompted, press <M> for Male or <F>
  26. for Female. You will need at least one
  27. name under each gender (slight bug in
  28. the program). Press <RETURN> on an
  29. empty input to move to the next step.
  30.  
  31.     You will want to read the
  32. displayed text to your party.
  33. Remember, this is a computer giving
  34. instructions -- so you MUST obey.
  35. Besides, computers do not have dirty
  36. minds! If at anytime a player moves a
  37. hand when not told to do so, the
  38. player FAILS.
  39.  
  40.     Press any key to display another
  41. prompt. You can play Body Twister as a
  42. Boys vs. Girls game or until only one
  43. player has not failed. Press <B> for a
  44. Boys/Girls game, or <A> for Anybody.
  45.  
  46.     Now you will see the first
  47. command, telling a player to put one
  48. of his/her hands on a certain part of
  49. another player's body. As the commands
  50. continue, the mass of humanity will
  51. undoubtedly become hopelessly
  52. contorted. Good! Again, should someone
  53. disconnect without orders (DWO), that
  54. player FAILS. Press <F>, use the
  55. cursor keys to highlight the Failed
  56. player's name, and press <RETURN>.
  57. That player is out of the game.
  58.  
  59.     Play continues until (in the
  60. Boy/Girl game) one gender is removed
  61. from play, or (in the Anybody game)
  62. one player is left.
  63.  
  64.  
  65. TECH NOTES
  66.  
  67.     The game is all in BASIC, but has
  68. been packed with a font/screen and a
  69. bit of ML to animate the border. To
  70. alter the game (adding or removing
  71. body parts, for instance) you must use
  72. Lee Novak's DISSOLVER program to take
  73. apart the three files.
  74.  
  75.     Before loading "body twister" (the
  76. BASIC program), do the following in
  77. immediate mode:
  78.  
  79.  POKE 44, 32
  80.  POKE 32*256, 0
  81.  
  82.  then load the program. The lists are
  83. all in DATA statements at the
  84. beginning of the program. The first
  85. DATA statement gives the number of
  86. items in the list, followed by the
  87. items. Be sure the number is correct
  88. for your edited game.
  89.  
  90.     Then use LINKER to link the three
  91. files ("body twister", "body.fts", and
  92. "body.ml"), and PACKER to pack the
  93. resulting file to "body.pkd", which is
  94. what the boot program LOADs and RUNs.
  95.  
  96.     The only trick to this program was
  97. to keep the Boys and Girls organized
  98. (for the Boy/Girl game) so that all
  99. commands involve cross-gender
  100. touching. I may be a Rev, but I still
  101. have a libido!
  102.  
  103.  DMM
  104.  
  105.  
  106.